aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/[title]
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-30 12:11:09 +0530
committerreal-zephex <[email protected]>2024-03-30 12:11:09 +0530
commit05ad6b5db6ae32a6b66e308a232f6b038a2f727d (patch)
tree1f75b22e6240c27816111f391bb47ba0872676c3 /src/app/manga/[title]
parentfixes: temporrarily disabled the image proxy server for faster image loading,... (diff)
downloaddramalama-05ad6b5db6ae32a6b66e308a232f6b038a2f727d.tar.xz
dramalama-05ad6b5db6ae32a6b66e308a232f6b038a2f727d.zip
fix: looks like image proxy is must for viewing manga pages. we will have to bare with the slow speeds ig
Diffstat (limited to 'src/app/manga/[title]')
-rw-r--r--src/app/manga/[title]/[id]/[read]/page.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx
index 127a6b9..e584ee2 100644
--- a/src/app/manga/[title]/[id]/[read]/page.jsx
+++ b/src/app/manga/[title]/[id]/[read]/page.jsx
@@ -31,7 +31,7 @@ export default async function Read({ params }) {
images.map((item, index) => (
<div className={styles.Image} key={index}>
<Image
- src={item}
+ src={`https://image-proxy-4xuu.onrender.com/image-proxy?url=${item}`}
key={index}
alt="Pages"
width={800}